home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-13 / allqtips.zip / TECH9.MSG < prev   
Text File  |  1992-08-22  |  2KB  |  42 lines

  1.           A QEdit Tip from the SemWare Technical Support Staff
  2.  
  3.                      .. QEdit and Spell Checking ..
  4.  
  5.         Are people constantly harassing you about your spelling?  Do
  6.         simple words like "the" come out wrong during those late night
  7.         message editing sessions?  You say you've found a spell checker
  8.         program to solve the problem... but how can you make it work
  9.         with QEdit, your favorite editor.
  10.  
  11.         QEdit support conference users have been using both ShareSpell
  12.         by Acropolis Software and EZSpell by Sam Smith for some time.
  13.         Below are two macros that let you use either of these programs
  14.         within QEdit to make spell checking a breeze.
  15.  
  16.         The following macro invokes ShareSpell from within QEdit to
  17.         spell check the current file.  The macro assumes that both
  18.         SS.EXE and the dictionary ACROP.DIC are in a directory named in
  19.         your PATH statement.
  20.  
  21.         <key>     MacroBegin SaveFile Dos "SS " CurrentFilename Return
  22.                   Return EditFile CurrentFilename Return NewFile Return
  23.  
  24.         The following macro invokes EZ-Spell from within QEdit to spell
  25.         check the current file.  The macro assumes that both EZS.EXE and
  26.         the dictionary EZSPELL.DCT are in a directory named in your PATH
  27.         statement.  EZSpell creates a backup file with the last letter
  28.         of the name changed to a "$".  The macro then deletes that file
  29.         in this macro after EZSpell is done.
  30.  
  31.         <key>     MacroBegin SaveFile Dos "EZS " CurrentFilename Return
  32.                   Return Dos "DEL " CurrentFilename Backspace "$" Return
  33.                   Return EditFile CurrentFilename Return NewFile Return
  34.  
  35.         NOTE: <key> is the key to which you should tie this macro. The
  36.         macro must all be on one line in your QCONFIG.DAT file.  Once
  37.         you have added the macro to your keyboard, run QCONFIG.EXE to
  38.         install the changes.  To use QCONFIG.EXE, run it, press return
  39.         to accept Q.EXE, press K for keys, press return to accept
  40.         QCONFIG.DAT, then press S to save your changes.
  41.  
  42.